home *** CD-ROM | disk | FTP | other *** search
Text File | 1990-08-14 | 595 b | 31 lines | [TEXT/ALFA] |
- ; Macros for time and date insertion:
- ;
- ; by Karl J. Smith
- ;
- ; email: ksmith@jarthur.claremont.edu
- ;
- ; 8/10/90
-
- (define insertTime
- type " "
- ; Put one of the following characters in the above type statement:
- ; S - time with seconds: 6:55:21 PM
- ; <space> - time: 6:55 PM
- setMark
- backwardChar
- markHilite
- acmd "Paste Time"
- )
-
- (define insertDate
- type "S"
- ; Put one of the following characters in the above type statement:
- ; S - short date: 8/10/90
- ; L - long date: Friday, August 10, 1990
- ; A - abbrev date: Fri, Aug 10, 1990
- setMark
- backwardChar
- markHilite
- acmd "Paste Date"
- )
-